Use this migration guide to update Kanzi applications from Kanzi 3.6 to Kanzi 3.6.1.
Scheduler m_scheduler in Application is now a direct field in an application and no longer a shared pointer
setLayoutSize() is now setSize()Node2D::setLayoutSize renamed to setSize(). setLayoutSize() still exists as a forward to setSize() to keep existing applications working. Use of setLayoutSize() is discouraged.
GlyphTextureTo be consistent with the 2D font rendering and brushes, font materials now use ContentTexture as the glyph texture . Kanzi still supports the GlyphTexture property, but prints a warning.
If in your application you override
void DataSource::loadFromKZB(const KzuResourceLoaderThreadContext* threadContext, KzcInputStream* inputStream, const KzuBinaryFileInfo* file);
void DataSource::loadFromKZB(Domain* domain, KzbFile& kzbFile, ReadOnlyMemoryFile& file, KzbMemoryParser& parser);
If you use the improved kzb format:
addKzbFile function replaces the functionality of the mergeDirectoryFromFile function used in the legacy kzb format.loadFromKZB() to work in Kanzi Studio Preview, you must also implement the loading from the legacy kzb format.Kanzi Studio no longer imports from Kanzi Engine plugins property types which include spaces in names. Kanzi Studio removes such property types from existing projects.
If you create in a Kanzi Engine plugin property types which contain spaces, remove the spaces, update the plugin in your Kanzi Studio project, and update the project to use the new name for that property type.